*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
	width: 100%;
	height: 100%;
	background-color:white;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: center;
	}

/*inicio de header*/
.header{
    width: 100%;
    background-color:white;
    height: 8em;
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
    }
.logo{
    object-fit: cover;
    height: 100px;
    width: 335px;
    margin-left: 122px;
    margin-top: -6px;
}
.barnav{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	}
.menu{
    width: 10%;
    height: 100%;
    color:black;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	}
.menu:hover{
   color:#990000;
   transition: 0.5s;
}

/* Quitar estilo por defecto de los enlaces del menú */
.barnav a {
  text-decoration: none;   /* quita subrayado */
  color: #000000;          /* negro */
  font-weight: 500;
}

/* Hover elegante */
.barnav a:hover {
  color: #990000;          /* rojo corporativo */
}

/* MAPA */
.contact-map iframe{
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* SECCION GENERAL */
.contact-section{
  background: #f5f5f5;
  padding: 80px 10%;
}

/* CONTENEDOR */
.contact-container{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* IZQUIERDA */
.contact-info{
  flex: 1;
}

.contact-info h2{
  font-size: 42px;
  margin-bottom: 30px;
  color: #1a1a1a;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.contact-info p{
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

.direccion{
  margin-top: 25px;
}

.horario{
  margin-top: 15px;
  color: #888;
  font-size: 14px;
}

/* DERECHA */
.contact-form{
  flex: 1;
}

.contact-logo{
    width: 200px;
    margin-top: -82px;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 20px;   /* antes tenía negativos */
}
.label{ 
	display: block; 
	color:black;
	margin: 10px 0 6px; 
	font-weight: 700;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
.contact-form form{
    display: flex;
    flex-direction: column;
    margin-top: -62px;        /* antes tenía -85px */
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  font-size: 14px;
  border-radius: 15px;
}

.contact-form textarea{
  height: 120px;
  resize: none;
  border-radius: 15px;
font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

/* BOTON SEND */
.btn-send{
    background: black;
    color: white;
    border: none;
    padding-top: 12px;
    padding-right: 12px;
    padding-left: 12px;
    padding-bottom: 12px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 14px;
    transition: 0.3s;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    border-radius: 15px;
    margin-top: 15px;
}

.btn-send:hover{
  background:#990000;
}
.social{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    margin-left: -18px;
}
.social-link{
    color: black;
    font-weight: 700;
    text-decoration: none;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
.social-link:hover{ 
  text-decoration:none;
  color:#990000;
}

/* BOTON WHATSAPP */
.btn-whatsapp{
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: 0.3s;
}

.btn-whatsapp img{
  width: 28px;
}

.btn-whatsapp:hover{
  transform: scale(1.1);
}

/* RESPONSIVE */
@media(max-width: 992px){

  .contact-container{
    flex-direction: column;
  }

  .contact-section{
    padding: 60px 6%;
  }

  .contact-logo{
    margin-top: 30px;
  }

}